@charset "UTF-8";
/* CSS Document */


video{
	width:100%;
	height:auto;
}
/*https://www.w3schools.com/css/css_rwd_videos.asp*/

iframe{
	width:100%;
	height:auto;
}

nav a:hover {
	background-color:cornflowerblue;
	color:black;
}
nav a:active {
	background-color:white;
	color:red;
}
/* https://www.w3schools.com/howto/howto_js_topnav.asp */

h1{
	font-family:courier;
	font-size:2em;
}

h2{
	font-family:courier;
	fontsize:1.75em
}

h3 {
	font-family:courier;
	font-size:1.5em;
	
}

h4 {
	font-family:courier;
	font-size:1.25em;
}

p{ 
	font-family:arial;
	font-size:1em;
}

nav{
	font-family:courier;
	margin-left:1em;
	margin-right:1em;
}



div.pageMenu {
	margin-left:25%;
	margin-top: 5%;
	margin-bottom:5%;

}

a.pageMenu{ 
	font:bold;
	font-family:courier;
	font-size:20px;
	text-decoration:none;
	color:white;
	background-color:black;


	/* https://stackoverflow.com/questions/2041388/how-to-remove-the-underline-for-anchorslinks */
}

.section{
	margin-top:10em;
	margin-bottom:5em;
	margin-left:1em;
	margin-right:1em;
}

.topMenu{
	color:#F1F1F1;
	background-color:black;
	font-family:courier;
	
}
.topLeftSide{

	display:flex;
	flex-direction:row;
	justify-content:flex-start;
	flex-wrap:nowrap;
	align-items:flex-end;
	align-content:stretch;
}

.topRightSide{
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap-reverse;
}

div.navMenu{
	margin-top:1em;
	margin-left:10%;	
}

.breadcrumb{
	font-family:courier;
	background-color:black;
	color:white;
	font-size:1em;
}

a.footerBar{
	color:white;
	font-family:Arial;
	font-size:14px;
}

.footerBar{
	color:white;
	font-family:Arial;
	font-size:14px;
	background-color:black;
	display:flex;
	flex-direction:row;
	/*align-items:flex-start;*/
	justify-content:space-between;
	/*https://jonitrythall.com/flexbox-cheatsheet */

}
.footerItemLeft{
	margin-left:3em;
	margin-top:3em;
	margin-bottom:5em;
	flex-grow:1;
	order:1;
}
.footerSpacer{
	order:2;
	flex-grow:2;
}

.footerItemRight{
	margin-right:3em;
	margin-left:3em;
	margin-top:3em;
	margin-bottom:5em;
	flex-grow:1;
	order:3;
}


/* https://dev.to/ljcdev/easy-hamburger-menu-with-js-2do08 */

@media(max-width:700px){
	
.footerBar{
	background-color:black;
	color:white;
	font-family:Arial;
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	}
}
@media(min-width:1000px){
	
	video{
	width:720px;
	height:480px;
	}
	
	iframe{
	width:560px;
	height:315px;
	}
}

/* https://www.w3schools.com/css/css3_mediaqueries.asp */
